b2072b0fc7e9520615c39a37e3638b17125d2b13,src/main/java/com/sk89q/craftbook/sponge/mechanics/pipe/Pipes.java,Pipes,performPipeAction,#Location#,80

Before Change



                if(itemStack.getQuantity() > 0) {
                    for(ItemStackSnapshot snapshot : inventory.get().offer(itemStack).getRejectedItems()) {
                        Item item = (Item) location.getExtent().createEntity(EntityTypes.ITEM, location.getPosition()).get();
                        item.offer(Keys.REPRESENTED_ITEM, snapshot);
                        location.getExtent().spawnEntity(item, Cause.of(NamedCause.source(location)));
                    }

After Change



                if(itemStack.getQuantity() > 0) {
                    for(ItemStackSnapshot snapshot : inventory.get().offer(itemStack).getRejectedItems()) {
                        Item item = (Item) location.getExtent().createEntity(EntityTypes.ITEM, location.getPosition());
                        item.offer(Keys.REPRESENTED_ITEM, snapshot);
                        location.getExtent().spawnEntity(item, Cause.of(NamedCause.source(location)));
                    }